home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 47 / MOBICLIC 47.ISO / mac / DATA / COMMUNS / MOBICLIC_MENUS.CST / 00030_Script_GESTION_DICO < prev    next >
Text File  |  2002-09-19  |  379b  |  20 lines

  1. -- gestion du dictionnaire
  2. global pisteDico
  3.  
  4. on mouseUp
  5.   sprite(pisteDico).visible = not(sprite(pisteDico).visible)
  6.   sprite(pisteDico+1).visible = not(sprite(pisteDico+1).visible)
  7. end
  8.  
  9. on beginSprite
  10.   pisteDico = the currentSpriteNum - 2
  11.   masquerPistes pisteDico, (pisteDico+1)
  12. end beginSprite
  13.  
  14. on mouseEnter
  15.   cursor 280
  16. end
  17.  
  18. on mouseLeave
  19.   cursor -1
  20. end